home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / FIRSTNON.HDR < prev    next >
Text File  |  1994-04-25  |  902b  |  42 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _FirstNon( cString ) --> cString
  8.  
  9. PARAMETERS:
  10.  
  11. cString  : String to test
  12.  
  13. SHORT:
  14.  
  15. Return string up to but not including first non-numeric character.
  16.  
  17. DESCRIPTION:
  18.  
  19. _FirstNon() Returns a substring of the string passed in cString up to but
  20. not including the Non-AlphaNumeric character.
  21.  
  22. NOTE:
  23.  
  24. The UNDERSCORE character is considered AlphaNumeric in this case. Thus, A..Z
  25. a..z 0...9 and _ are the only allowed characters.
  26.  
  27.  
  28. EXAMPLE:
  29.  
  30. t = _FirstNon('ABC&D')
  31. Result: t = 'ABC'
  32.  
  33.  
  34. t = _FirstNon('XXX&YYYYY')
  35. Result: t = 'XXX'
  36.  
  37.  
  38. t = _FirstNon('*ABCDEFG')
  39. Result: t = ''
  40.  
  41. ******************************************************************************/
  42.